home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
OOP_Course
/
Labs
/
IB_RPNCalculator
/
Solution
/
Stack.h
< prev
next >
Wrap
Text File
|
1992-12-19
|
143b
|
16 lines
// Stack.h
#import <objc/Storage.h>
@interface Stack : Storage
{
}
- push:(float)aNumber;
- (float)pop;
- printStack;
- (float)top;
@end